-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read exclude patterns from .gitignore in absence of user-provided patterns (#344) #345
Conversation
patterns (jendrikseipp#344) Use .gitignore to exclude files if --exclude is missing from both pyproject.toml and the command line. Vulture now requires the pathspec library to run.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks great! After taking care of my nitpicks and fixing the CI checks, this is ready to be merged.
@jendrikseipp a little stumped with the CI failures as I can't reproduce it locally. any ideas? |
Thanks for making the revisions! I fixed the CI error and everything looks good now :-) |
Description
Use .gitignore to exclude files if --exclude is missing from both
pyproject.toml and the command line. Vulture now requires the
pathspec library to run.
Related Issue
#344
Checklist:
tox -e fix-style
to format my code and checked the result withtox -e style
.